-
Notifications
You must be signed in to change notification settings - Fork 10
feat: add support for blue/green deployments #911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
logger.debug( | ||
Messages.get_formatted( | ||
"SuspendConnectRouting.SwitchoverCompleteContinueWithConnect", | ||
(time.time() - start_time_sec) // 1000)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(time.time() - start_time_sec) // 1000)) | |
(time.time() - start_time_sec) * 1000)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we track the time using ms or ns instead of seconds for more detailed time reporting?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
time.time() returns a floating point that includes fractions of a second, for example if I run time.time() on my machine I get 1752773235.3210173
, so I believe we will still get ms precision
… inner value of the ValueContainer
Description
Adds support for Blue/Green Deployments for the following DB types:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.